home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / what.zip / HELPEX.H_ / HELPEX.bin
Text File  |  1992-07-26  |  821b  |  28 lines

  1.  
  2. /* If version of windows.h is before 3.1, then define the following */
  3. #if (WINVER < 0x030a)
  4. #define HELP_CONTENTS      0x003
  5. #define HELP_SETCONTENTS   0x005
  6. #define HELP_COMMAND       0x102
  7. #define HELP_PARTIALKEY    0x105
  8. typedef WORD  UINT;
  9. typedef WORD  WPARAM;
  10. typedef LONG  LPARAM;
  11. #endif
  12.  
  13. /* Buffer sizes */
  14. #define EXE_NAME_MAX_SIZE  128
  15. #define MULTIKEY_MAX_SIZE    20
  16. #define ERRORSTRING_MAX_SIZE   75
  17.  
  18. /* User defined message sent when F1 is pressed in a menu or
  19.  * dialog box. */
  20. #define WM_F1DOWN  WM_USER
  21.  
  22. int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  23. BOOL InitApplication(HANDLE);
  24. BOOL InitInstance(HANDLE, int);
  25. long FAR PASCAL MainWndProc(HWND, UINT, WPARAM, LPARAM);
  26. BOOL FAR PASCAL About(HWND, UINT, WPARAM, LPARAM);
  27. BOOL FAR PASCAL Multikey(HWND, UINT, WPARAM, LPARAM);
  28.